home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DIALOGS / DBLOCDLG / MAPS.PAS < prev    next >
Pascal/Delphi Source File  |  1996-09-14  |  566b  |  34 lines

  1. unit maps;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, Windows, Messages, Classes, Graphics, Controls,
  7.   StdCtrls, ExtCtrls, Forms;
  8.  
  9. type
  10.   TMappingsDlg = class(TForm)
  11.     Button1: TButton;
  12.     Button2: TButton;
  13.     Button3: TButton;
  14.     MappingsMemo: TMemo;
  15.     FieldsListBox: TListBox;
  16.     Mappings: TLabel;
  17.     Label1: TLabel;
  18.     procedure Button3Click(Sender: TObject);
  19.   end;
  20.  
  21. var
  22.   MappingsDlg: TMappingsDlg;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. procedure TMappingsDlg.Button3Click(Sender: TObject);
  29. begin
  30.    Application.HelpContext(13);
  31. end;
  32.  
  33. end.
  34.